First contact
Getting the code
Section titled “Getting the code”The code is available on GitHub.
To clone it
$ git clone git@github.com:pasqal-io/maximum-independent-set.gitor
$ git clone https://github.com/pasqal-io/maximum-independent-set.gitHatch instructions
Section titled “Hatch instructions”We use hatch and Python 3.10 for development.
Setting up
Section titled “Setting up”With Python and pip installed, to setup the environment:
$ pip install hatch$ hatch -v shellThis will open a shell with all the dependencies installed.
Running tests
Section titled “Running tests”To run the unit and integration tests
$ hatch run testTo run linters
$ hatch run pre-commit run --all-files